LobbyPlugin

OSHs LobbyPlugin
git clone git://git.oshgnacknak.de/LobbyPlugin.git
Log | Files | Refs

pom.xml (1161B)


      1 <project xmlns="http://maven.apache.org/POM/4.0.0"
      2 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      3 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      4 	<modelVersion>4.0.0</modelVersion>
      5 	<groupId>de.oshgnacknak.lobbyPlugin</groupId>
      6 	<artifactId>LobbyPlugin</artifactId>
      7 	<version>0.0.1-SNAPSHOT</version>
      8 	<name>LobbyPlugin</name>
      9 	<description>A lobby plugin bungeeCord-driven server networks.</description>
     10 	<build>
     11 		<sourceDirectory>src</sourceDirectory>
     12 		<plugins>
     13 			<plugin>
     14 				<artifactId>maven-compiler-plugin</artifactId>
     15 				<version>3.8.0</version>
     16 				<configuration>
     17 					<source>1.8</source>
     18 					<target>1.8</target>
     19 				</configuration>
     20 			</plugin>
     21 		</plugins>
     22 	</build>
     23 	<repositories>
     24 		<repository>
     25 			<id>spigot-repo</id>
     26 			<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
     27 		</repository>
     28 	</repositories>
     29 	<dependencies>
     30 		<dependency>
     31 			<groupId>org.bukkit</groupId>
     32 			<artifactId>bukkit</artifactId>
     33 			<version>1.13-R0.1-SNAPSHOT</version>
     34 			<scope>provided</scope>
     35 		</dependency>
     36 	</dependencies>
     37 </project>